home *** CD-ROM | disk | FTP | other *** search
/ Art Fundamentals - Core Concepts in Art / Art Fundamentals: Core Concepts in Art.iso / pc / txture_p.dxr / 00059.ls < prev    next >
Encoding:
Text File  |  2001-07-16  |  852 b   |  28 lines

  1. on mouseWithin
  2.   set the memberNum of sprite 120 to member("white")
  3. end
  4.  
  5. on mouseLeave
  6.   set the memberNum of sprite 120 to member("tan")
  7. end
  8.  
  9. on mouseUp me
  10.   global squareloc, circleloc, triangleloc, moonloc, pointloc, starloc
  11.   set the constraint of sprite 106 to 0
  12.   set the constraint of sprite 107 to 0
  13.   set the constraint of sprite 108 to 0
  14.   set the constraint of sprite 109 to 0
  15.   set the constraint of sprite 110 to 0
  16.   set the constraint of sprite 111 to 0
  17.   set the loc of sprite 106 to triangleloc
  18.   set the loc of sprite 107 to moonloc
  19.   set the loc of sprite 108 to squareloc
  20.   set the loc of sprite 109 to pointloc
  21.   set the loc of sprite 110 to circleloc
  22.   set the loc of sprite 111 to starloc
  23.   repeat with X = 165 to 220
  24.     set the loc of sprite X to point(595, 200)
  25.     set the member of sprite X to member("dot")
  26.   end repeat
  27. end
  28.